StereoPannerA stereo panner audio effector.
Placeholder class.
StereoPannercurrently only declares anameproperty — it does not extendEffector, and has no panning behavior, other properties, or methods implemented yet. It cannot be attached to aChannelorMasterviaaddEffect()/attachEffect()yet, since those expect anEffectorinstance. (Per-channel stereo panning is already available today throughChannel.pan()/AudioClip.setPanLevel().)
import { StereoPanner } from "@fluex/fluexgl-dsp";
const panner = new StereoPanner();
console.log(panner.name); // "StereoPanner"
new StereoPanner(): StereoPanner;
Takes no arguments. Uses the default (implicit) constructor.
name: stringInternal name for this effector. Defaults to "StereoPanner".
This class has no public methods.
This class does not emit any events.
This class does not define public getters or setters.